home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / string / strcpy.doc < prev    next >
Encoding:
Text File  |  1995-04-11  |  490 b   |  26 lines

  1. MyLib/strcpy                                                      MyLib/strcpy
  2.  
  3.     NAME
  4.     strcpy - copy a string
  5.  
  6.     SYNOPSIS
  7.     #include <string.h>
  8.  
  9.     char *strcpy(char *Destination, const char *Source);
  10.  
  11.     FUNCTION
  12.     This function copies a string from Source to Dest.
  13.  
  14.     INPUTS
  15.     Dest - pointer to the destination area
  16.     Source - pointer to the source string
  17.  
  18.     RESULT
  19.     The strcpy() function returns Dest.
  20.  
  21.     SEE ALSO
  22.     stpcpy
  23.  
  24.     STANDARDS COMPLIANCE
  25.     ANSI C3.159-1989, ISO 9899-1990
  26.